home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / CustomMenuPalette / CustomMenu / CustomMenuInspector.h < prev    next >
Text File  |  1995-09-10  |  848b  |  36 lines

  1.  
  2. /*
  3. ** Source file      : CustomMenuInspector.h
  4. ** Created by       : gideon@berd
  5. ** Created on       : Fri Sep 8 09:39:27 NZST 1995
  6. ** RCS File         : $Source: /Ramoth/Black.Albatross/CVS/CustomMenu/CustomMenuInspector.h,v $
  7. ** Last modified    : $Date: 1995/09/10 22:37:59 $
  8. ** Last modified by : $Author: gideon $
  9. ** Current Revision : $Revision: 1.1.1.1 $
  10. */
  11.  
  12.  
  13. #import <appkit/appkit.h>
  14. #import <apps/InterfaceBuilder.h>
  15. #import "CustomMenu.subproj/DraggableMenu.h"
  16.  
  17. // A category of DraggableMenu so it doesn't have to be included in the library, yet IB support is there
  18. @interface DraggableMenu(IBSupport)
  19.  
  20. - (const char *)getInspectorClassName;
  21. - (NXImage *)getIBImage;
  22.  
  23. @end
  24.  
  25. @interface CustomMenuInspector:IBInspector <IBInspectors>
  26. {
  27.     id saveAndRestoreSwitch;
  28.     id iconButton;
  29. }
  30.  
  31. - (const char *)version;
  32. - init;
  33. - awakeFromNib;
  34.  
  35. @end
  36.